Array

判断元素是否存在:Array.prototype.includes(): boolean

次方运算

// before
Math.pow(2, 3) // 8

// after
2 ** 3